<?
    
    include './system/common.php';
    
 include './system/functions.php';
        
      include './system/user.php';
    
if(!$user) {

  header('location: /');
    
exit;

}

  $sub = _string(_num($_GET['sub']));
$topic = _string(_num($_GET['topic']));

  $subt = _string(_num($_GET['sub']));

if(!$sub && !$topic) {
    $title = '';    

include './system/h.php';  

?>

<div class='title'><?=$title?></div>
 <div class='line'></div>

<?

$count = mysql_result(mysql_query('SELECT COUNT(*) FROM `cforum_sub`'),0);

if($count > 0) {


  if($_GET['create'] == true && $user['access'] == 2) {

  $name = _string($_POST['name']);
$access = _string(_num($_POST['access']));
  if($name) {
  
    mysql_query('INSERT INTO `cforum_sub` (`name`,
                                        `access`) VALUES ("'.$name.'",
                                                        "'.$access.'")');

    header('location: /cforum/');

  }

?>

  <div class='content'>
  
  <form action='/cforum/?create=true' method='post'>
  
   :<br/>
  <input name='name'/><br/>
    :<br/>
  <select name='access'>
  <option value='0'></option>
  <option value='1'></option>
  <option value='2'></option>
  </select><br/>
  <input type='submit' value=''/>
  
  </form>

  </div>
  <div class='line'></div>

<?

  }

$id = _string(_num($_GET['id']));

  if($id && $user['access'] == 2) {
  
  $i = mysql_query('SELECT * FROM `cforum_sub` WHERE `id` = "'.$id.'"');
  $i = mysql_fetch_array($i);
  
  if(!$i) {
  
    header('location: /cforum/');
    
  exit;
  
  }
  
  
$name = _string($_POST['name']);
  if($name) {
  
    mysql_query('UPDATE `cforum_sub` SET `name` = "'.$name.'" WHERE `id` = "'.$i['id'].'"');

    header('location: /cforum/?adm=true');

  }
  
?>

  <div class='content'>
  
  <form action='/cforum/?adm=true&id=<?=$i['id']?>' method='post'>
  
   :<br/>
  <input name='name' value='<?=$i['name']?>'/> <input type='submit' value=''/>
  
  </form>

  </div>
  <div class='line'></div>

<?

  if(_string($_GET['delete'] == true)) {
  
    $q = mysql_query('SELECT * FROM `cforum_topic` WHERE `sub` = "'.$i['id'].'"');
    while($row = mysql_fetch_array($q)) {
      mysql_query('DELETE FROM `cforum_comments` WHERE `topic` = "'.$row['id'].'"');
    }
    
   mysql_query('DELETE FROM `cforum_topic` WHERE `sub` = "'.$i['id'].'"');
    
      mysql_query('DELETE FROM `cforum_sub` WHERE `id` = "'.$i['id'].'"');
    
    header('location: /cforum/?adm=true');
    
    }

  }

?>

<div class='list'>

<?

$q = mysql_query('SELECT * FROM `cforum_sub`');

  while($row = mysql_fetch_array($q)) {

  $i++;

?>

  <li>

<?


  if(_string($_GET['adm'] == true && $user['access'] == 2)) {

?>

  <span style='float: right;'>( <a href='/cforum/?adm=true&id=<?=$row['id']?>&delete=true'></a> | <a href='/cforum/?adm=true&id=<?=$row['id']?>'></a> )</span>

<?

  }

?>

  <a href='/cforum/sub/<?=$row['id']?>/'><img src='/images/icon/section.png' alt='*'/> <?=$row['name']?></a></li>

<?
  
  }

?>

  <li <?=(_string($_GET['adm'] == true ? '':'class=\'no_b\''))?>>

<?

  if($user['access'] == 2) {

?>

  <a href=''><a href='/cforum/<?=(_string($_GET['adm'] == true ? '':'?adm=true'))?>' <?=(_string($_GET['adm'] == true ? 'style=\'color: #909090;\'':''))?>><img src='/images/icon/arrow.png' alt='*'/>  </a></a>

<?

  if(_string($_GET['adm'] == true)) {

?>

  <li class='no_b'><a href='/cforum/?create=true'><img src='/images/icon/arrow.png' alt='*'/>  </a></li>

<?
  
  }
  
  }

?>
  
  </li>

</div>

<?

  }
  else
  {

?>

<div class='content'><font color='#909090'></font></div>

<?

  }
  
include './system/f.php';

  }
  elseif($sub) {
  
  $sub = mysql_query('SELECT * FROM `cforum_sub` WHERE `id` = "'.$sub.'"');
  $sub = mysql_fetch_array($sub);

  if(!$sub) {
  
      header('location: /cforum');
  
  exit;
  
  }

if(_string($_GET['create'] == true && $cl['id'] == $ce['clan'])) {

    $title = ' ';    

include './system/h.php';

?>

<div class='title'><?=$title?></div>
 <div class='line'></div>

<?

  if($user['save'] == 1) {


     $name = _string($_POST['name']);
              $text = _string($_POST['text']);

  if($name && $text) {
    
  if($user['level'] > 14) {
  
      mysql_query('INSERT INTO `cforum_topic` (`sub`,
                                             `name`,
                                             `user`,
                                             `text`,
                                             `time`) VALUES ("'.$sub['id'].'",
                                                                  "'.$name.'",
                                                            "'.$user['id'].'",
                                                                  "'.$text.'",
                                                                 "'.time().'")');
  
    $topic_id = mysql_insert_id();
  
    header('location: /cforum/topic/'.$topic_id.'/');
  
  }
  else
  {

?>

<div class='content' align='center'><font color='#909090'>    <img src='/images/icon/level.png' alt='*'/> 15 !</font></div>
<div class='line'></div>

<?
  
  }
  
  }
  

?>


<div class='content'>
  <form action='/cforum/sub/<?=$sub['id']?>/?create=true' method='post'>
   :<br/>
  <input name='name'/><br/>
  
  :<br/>
  <textarea name='text' style='width: 100%;'></textarea><br/>
  <input type='submit' value=''/>
  </form>
</div>

<?

  
  }
  else
  {

?>

<div class='content'><font color='#999'>       </font></div>

<?
  
  }


include './system/f.php';  


}
else
{

    $title = $sub['name'];    

include './system/h.php';

  
 $cl = mysql_query('SELECT * FROM `clans` WHERE `id` = "'.$sub['id'].'"');
 $cl = mysql_fetch_array($cl);
 
 $ce = mysql_query('SELECT * FROM `clan_memb` WHERE `user` = "'.$user['id'].'"');
 $ce = mysql_fetch_array($ce);
 
 $cm = mysql_query('SELECT * FROM `clan_memb` WHERE `user` = "'.$user['id'].'"');
 $cm = mysql_fetch_array($cm);
 
?>

<div class='title'> : "<?=$cl['name']?>"</div>
<div class='line'></div>

<?

    $max = 10;
  $count = mysql_result(mysql_query('SELECT COUNT(*) FROM `cforum_topic` WHERE `sub` = "'.$sub['id'].'"'),0);
  $pages = ceil($count/$max);
   $page = _string(_num($_GET['page']));

    if($page > $pages) {
    
   $page = $pages;
    
    }
  
    if($page < 1) {
    
   $page = 1;
    
    }
    
  $start = $page * $max - $max;


if($count > 0) {

?>

<div class='list'>

<?

$q = mysql_query('SELECT * FROM `cforum_topic` WHERE `sub` = "'.$sub['id'].'" ORDER BY `stick` DESC, `id` DESC LIMIT '.$start.', '.$max.'');
  while($row = mysql_fetch_array($q)) {
  
  $i++;


?>

<li><a href='/cforum/topic/<?=$row['id']?>/' <?=($row['stick'] == 1 ? 'style="font-weight: bold;"':'')?>><img src='/images/icon/forum_<?=($row['close'] == 1 ? 3:2)?>.png' alt='*'/> <?=$row['name']?></a></li>

<?

  }
  
?>

<li class='no_b'><?=pages('/cforum/sub/'.$sub['id'].'/?')?></li>
  
  </li>


</div>

<?
  
  }
  else
  {

?>

<div class='content'><font color='#999'> !</font></div>

<?

  }

?>

</div>
<?

  if($cl['id'] == $ce['clan']) {

?>

 <div class='line'></div>
<div class='list'>

  <li class='no_b'><a href='/cforum/sub/<?=$sub['id']?>/?create=true'><img src='/images/icon/forum_2.png'>   </a></li>

</div>

<?

  }


include './system/f.php';

}

}
elseif($topic) {

  $topic = mysql_query('SELECT * FROM `cforum_topic` WHERE `id` = "'.$topic.'"');
  $topic = mysql_fetch_array($topic);

  if(!$topic) {
  
      header('location: /cforum');
  
  exit;
  
  }

    $title = $topic['name'];

include './system/h.php';  

  $topic_user = mysql_query('SELECT * FROM `users` WHERE `id` = "'.$topic['user'].'"');
  $topic_user = mysql_fetch_array($topic_user);

?>

<div class='title'><?=$title?></div>
 <div class='line'></div>

<?

if(_string($_GET['adm'] == true && $user['access'] > 0)) {

?>

<div class='content'>
<img src='/images/icon/arrow.png' alt='*'/> 


<a href='/cforum/topic/<?=$topic['id']?>/?stick=true'> <?=($topic['stick'] == 0 ? '':'')?></a> | <a href='/cforum/topic/<?=$topic['id']?>/?close=true'> <?=($topic['close'] == 0 ? '':'')?></a> | <a href='/cforum/topic/<?=$topic['id']?>/?delete=true'></a> | <a href='/cedit.php?id=<?=$topic['id']?>/'> .</a></div>
 <div class='line'></div>

<?

}

?>

<div class='content'>
  <img src='/images/icon/race/<?=$topic_user['r'].($topic_user['online'] > time() - 300 ? '':'-off')?>.png' alt='*'/> <a href='/user/<?=$topic_user['id']?>/'><?=$topic_user['login']?></a>, <?=_times(time() - $topic['time'])?><br/>

<?

  if($topic_user['access'] == 1) {
  
?>
<font color='f09060'>
<?
  
  }
  
  if($topic_user['access'] == 2) {
  
?>
<font color='90c0c0'>
<?
  
  }

?>

<?=bb(smiles($topic['text']))?>

<?

  if($topic_user['access'] > 0) {
  
?>
</font>
<?
  
  }

?>

</div>
<div class='line'></div>

<?

      if($user['access'] > 0) {
  
   if(_string($_GET['stick'] == true)) {

    mysql_query('UPDATE `cforum_topic` SET `stick` = "'.($topic['stick'] == 0 ? 1:0).'" WHERE `id` = "'.$topic['id'].'"');
  
  header('location: /cforum/topic/'.$topic['id'].'/?adm=true');
  
  }
  
   if(_string($_GET['close'] == true)) {

    mysql_query('UPDATE `cforum_topic` SET `close` = "'.($topic['close'] == 0 ? 1:0).'" WHERE `id` = "'.$topic['id'].'"');
  
  header('location: /cforum/topic/'.$topic['id'].'/?adm=true');
  
  }

if(_string($_GET['delete'] == true)) {

    $q = mysql_query('SELECT * FROM `cforum_comments` WHERE `topic` = "'.$topic['id'].'"');
    while($row = mysql_fetch_array($q)) {
      mysql_query('DELETE FROM `cforum_comments` WHERE `id` = "'.$row['id'].'"');
    }

  header('location: /cforum/sub/'.$topic['sub'].'/?adm=true');
  
    mysql_query('DELETE FROM `cforum_topic` WHERE `id` = "'.$topic['id'].'"');

  }

?>

<div class='list'>
  <li class='no_b'><a href='/cforum/topic/<?=$topic['id']?>/<?=(_string($_GET['adm'] == true ? '':'?adm=true'))?>' <?=(_string($_GET['adm'] == true ? 'style=\'color: #909090;\'':''))?>><img src='/images/icon/arrow.png' alt='*'/>  </a></li>
</div>
<div class='line'></div>

<?

  }

  $count = mysql_result(mysql_query('SELECT COUNT(*) FROM `cforum_comments` WHERE `topic` = "'.$topic['id'].'"'),0);

?>

<div class='content'>
: <b><?=$count?></b>
</div>

<?

  if($count > 0) {

?>

<div class='line'></div>
<div class='menu'>

<?

    $max = 10;


  $pages = ceil($count/$max);
   $page = _string(_num($_GET['page']));

    if($page > $pages) {
    
   $page = $pages;
    
    }
  
    if($page < 1) {
    
   $page = 1;
    
    }
    
  $start = $page * $max - $max;

$q = mysql_query('SELECT * FROM `cforum_comments` WHERE `topic` = "'.$topic['id'].'" ORDER BY `id` LIMIT '.$start.', '.$max.'');

  while($row = mysql_fetch_array($q)) {

  $comment_user = mysql_query('SELECT * FROM `users` WHERE `id` = "'.$row['user'].'"');
  $comment_user = mysql_fetch_array($comment_user);

?>

<li><img src='/images/icon/race/<?=$comment_user['r'].($comment_user['online'] > time() - 300 ? '':'-off')?>.png' alt='*'/> <a href='/user/<?=$comment_user['id']?>/'><?=$comment_user['login']?></a><?

if($comment_user['id'] != $user['id']) {

?> <a href='/cforum/topic/<?=$topic['id']?>/?page=<?=$page?>&to=<?=$comment_user['id']?>'>(&#187;)</a><? } ?>, <?=_times(time() - $row['time'])?><br/>

<?

    if($row['to']) {

      $__to = mysql_query('SELECT * FROM `users` WHERE `id` = "'.$row['to'].'"');
      $__to = mysql_fetch_array($__to);

if($__to['id'] == $user['id']) {

?>

<font color='#90c090'>

<?

    }

?>

<?=$__to['login']?>,

<?

if($__to['id'] == $user['id']) {

?>

</font>

<?

    }
    
    }

  if($comment_user['access'] == 1) {
  
?>
<font color='f09060'>
<?
  
  }
  
  if($comment_user['access'] == 2) {
  
?>
<font color='90c0c0'>
<?
  
  }

?>

<?=bb(smiles($row['text']))?>

<?

  if($comment_user['access'] > 0) {
  
?>
</font>
<?
  
  }
  
  if($user['access'] > 0) {

$comment = _string(_num($_GET['comment']));

             if($comment) {
  
    mysql_query('DELETE FROM `cforum_comments` WHERE `id` = "'.$comment.'"');

    header('location: /cforum/topic/'.$topic['id'].'/?page='.$page);

  }

?>

<a href='/cforum/topic/<?=$topic['id']?>/?page=<?=$page?>&comment=<?=$row['id']?>'>[x]</a>

<?
  
  }

?>

</li>

<?

  }

?>

<li class='no_b'><?=pages('/cforum/topic/'.$topic['id'].'/?')?></li>

</div>

<?

  }
?>

<div class='line'></div>
<div class='content'>

<?

  if($topic['close'] == 0) {

  if($user['save'] == 1) {

  if($user['level'] > 5) {

$text = _string($_POST['text']);

  $to = _string(_num($_GET['to']));

  if($to) {

      $_to = mysql_query('SELECT * FROM `users` WHERE `id` = "'.$to.'"');
      $_to = mysql_fetch_array($_to);
  
  if(!$_to OR $_to['id'] == $user['id']) {

    header('location: /cforum/topic/'.$topic['id'].'/?page='.$page);
    
  exit;
  
  }
  
  }

  if($_to) {
  
    $text = str_replace($_to['login'].', ', '', $text);
  
  }

  if($text) {
  
    mysql_query('INSERT INTO `cforum_comments` (`topic`,`user`,`to`,`text`,`time`) VALUES ("'.$topic['id'].'", "'.$user['id'].'", "'.$_to['id'].'", "'.$text.'", "'.time().'")');
  
  header('location: /cforum/topic/'.$topic['id'].'/?page='.$pages);
  
  }

?>

<div class='content'>
<form action='/forum/topic/<?=$topic['id']?>/?page=<?=$page?>&to=<?=$to?>' method='post'>
  :<br/>
<textarea name='text' style='width: 100%;'><?=($to ? $_to['login'].', ':'')?></textarea><br/>
<input type='submit' value=''/>

</div></div></div>
<div class="list"><li><a href="/forum/"><img class="icon" src="http://144.76.127.94/view/image/icons/back.png" height="14">   </a></li></div>

</form>

<?

  }
  else
  {

?>

<font color='#999'>     <img src='/images/icon/level.png' alt='*'/> 5 </font>

<?
  
  }
  
  }
  else
  {

?>

<font color='#999'>        </font>

<?
  
  }
  
  }
  else
  {

?>

<font color='#f33'> </font>

<?
  
  }

?>

</div>

<?

include './system/f.php';  

}

?>